Questions tagged [mappings]
55 questions
0
votes
1 answer
Fluent NHibernate reflection mappings
I'd like to parse through an Fluent NHibernate mapping file so I can get the table name and column names that are specified in there.
Loading the assembly and reflecting the type as ClassMap isn't a problem but that class only get methods to set the…

johnnyboy
- 869
- 12
- 23
0
votes
1 answer
prometheus.yml for monitoring multiple cassandra
# my global config
global:
scrape_interval: 15s
label: titan
scrape_configs:
- job_name: cassandra_titan
static_configs:
- targets:
- 00.0.0.00:7070
- job_name: titan_server
static_configs:
- targets:
-…

user9062792
- 11
- 1
- 5
0
votes
1 answer
Elasticsearch: Term search not working on special characters
I am using Elasticsearch latest version 5.6.4. I want to index the special characters and search them for the field title.special. Below is my mappings:
PUT index1
{
"mappings": {
"isContainer:false": {
"properties": {
…

Rose
- 1,490
- 5
- 25
- 56
0
votes
2 answers
Creating and retrieving associated mappings in NHibernate
Say I have two persistent classes Cat and Hat. Let's imagine that the relationship between the two is bidirectionally one-to-many, as in a Cat can have many different Hats, and we can traverse the mapping in both directions. In order to create an…

Tyler Treat
- 14,640
- 15
- 80
- 115
0
votes
2 answers
Update strategy for table with sequence generated number as primary key in Informatica
I have a mapping that gets data from multiple sql server source tables and assigns a sequence generated number as ID for each rows. In the target table, the ID field is set as primary key.
Every time I run this mapping, it creates new rows and…

Subas
- 5
- 3
0
votes
2 answers
mod_rewrite for specific domains in a mappings file
I have a bunch of domains that I want to go to one domain but various parts of that domain.
# this is what I currently have
RewriteEngine On
RewriteCond %{HTTP_HOST} ^.*\.?foo\.com$ [NC]
RewriteRule ^.*$ ${domainmappings:www.foo.com} [L,R=301]
#…

scott
- 1
0
votes
1 answer
Elasticsearch: index first char of string
I'm using version 5.3.
I have a text field a. I'd like to aggregate on the first char of a. I also need the entire original value.
I'm assuming the most efficient way is to have a keyword field a.firstLetter with a custom normalizer. I've tried to…

siltalau
- 529
- 3
- 17
0
votes
1 answer
Cannot turn Elasticsearch dynamic mapping on
I disabled dynamic mapping with
curl -XPUT 'localhost:9200/_template/template_all?pretty' -H 'Content-Type: application/json' -d' { "template": "*", "order":0, "settings": { "index.mapper.dynamic": false }}'
I wanted to turn it back on…

danno
- 277
- 3
- 7
0
votes
1 answer
How to setup mappings for many-to-many association using elasticsearch-rails
According to the elasticseach docs, if I have a company that has many branches and I wanted to associate employees with the branch, I'd do this
PUT /company
{
"mappings": {
"branch": {},
"employee"{
"_parent": {
…
user1682647
0
votes
1 answer
Java Spring Hibernate, Runtime Optionally Perform Mappings?
In my database I have an Email Campaign that has 1 to many List, List has many to many Subscribers.
The problem I'm having is, for example, when I pull a campaign I don't always want all the subscribers (could be a lot of subscribers and only…

Brayden Hancock
- 786
- 1
- 6
- 22
0
votes
1 answer
hibernate resultset and mapping confusion
I was having a problem in getting result through hibernate.
I have four tables SnsUser, Participant, Interaction, Content;
SnsUser & Interaction has many-2-many relationship and Interaction and Content has many-2-one.
(SnsUser and Interation got…

Deam
- 1,007
- 2
- 17
- 36
0
votes
1 answer
NHibernate / Fluent NHibernate Mapping
Is it possible to map the following situation?
A product class (currently a table)
An account class (currently a table)
An accountproduct class (currently a join table but with additional information related to a specific product and account)
What…

Sam
- 1
0
votes
1 answer
Is there any Web UI for talend?
Is there any web UI for talend in which we could define mappings from the WEB UI only.
In this way a user can provide mappings at run-time.

Tarun Arora
- 113
- 2
- 3
- 9
0
votes
1 answer
Camunda mybatis mapping file error
Hi following is my customMapping file.

user2894296
- 590
- 1
- 10
- 20
0
votes
1 answer
Camunda mybatis custom query mapping file location
I'm working on adding custom queries based on sample.
However when initializing the executor it is throwing a null pointer exception because it can't find the mapping.xml file.Any idea on how to overcome this? I have tried giving the full path…

user2894296
- 590
- 1
- 10
- 20