Questions tagged [schemaless]
73 questions
0
votes
1 answer
Use Solr Schemaless feature without automatically adding unknown fields to managed-schema
I have different datasources that uploads different documents to Solr Sink. Now if two datasources sends a same name field with different data types (say integer & double) then indexing of second field fails because data type of first field is…

100rabh
- 6,156
- 5
- 27
- 41
0
votes
1 answer
HBase inserts from arbitrary JSON with row-id
Is there any software which converts any given JSON to HBase (JSON or Thrift) insert?
Let's say I receive following JSON to my stream
{
"_id":"www.somesite.com",
"values":[
{
"label":"test_label"
},
{
…

Cron Merdek
- 1,084
- 1
- 14
- 25
0
votes
1 answer
Schema vs Schemaless DBMS
I am using Couchbase Lite database for project which is schemaless as I know, and I am very happy with that one because it solves my issues, but it raise me one question related with primary key contraints in NoSQL (Document Database).
As we all…

Nasir
- 1,617
- 2
- 19
- 34
0
votes
1 answer
neo4jclient: Creating properties/fields at runtime, no fixed schema application
I’m creating an ecommerce with products having their own fields (Id, Name):
This is the object I have in c#
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
}
This is my code to generate a product in C# to…

Carlo Luther
- 2,402
- 7
- 46
- 75
0
votes
1 answer
Storing lists of user interests in a schemaless datastore
I am looking to have users enter their interests, which may or may not already be in the system, and store them in a schemaless database (GAE storage to be specific) in such a way that I can easily discover users with similar interests.
A similar…

Briercliffe
- 3
- 2
0
votes
1 answer
How to make schema less titan graph?How to set schema-default propery?
How to make schema less titan graph?How to set schema-default propery ?
Please suggest a way?Here is my code :
try{
//timestamp,1416375283,ipaddress,2097152002,mobilenumber,966566564213,eventname,1000
// TODO Auto-generated method stub
…

abi_pat
- 572
- 2
- 12
- 35
0
votes
1 answer
cassandra 2.0.9: query for undefined column
Using Cassandra 2.0.9 CQL, how does one query for rows that don't have a particular column defined? For example:
create table testtable ( id int primary key, thing int );
create index on testtable ( thing );
# can now select rows by thing
insert…

Mayur Patel
- 945
- 1
- 7
- 15
0
votes
1 answer
Bulk check if value exists before inserting
I have a database in Couch db with documents like:
{"foo":["bar1":"baz","bar2":18,"bar3":23.2]}
Is there a way for me to do batch checking of each value before inserting new documents?
What I want to achieve is if in any document in the database…

Einar Sundgren
- 4,325
- 9
- 40
- 59
0
votes
2 answers
Can the Friendly ORM be used alongside a traditional database schema?
Can I use ActiveRecord for existing models and Friendly for new models?
Basically, I want to decide which models I'd like to be schemaless and which models I'd like to be done the "old" style.

user94154
- 16,176
- 20
- 77
- 116
0
votes
2 answers
Schema-less dbms that supports SQL query syntax
Is there any schema-less dbms that support SQL query syntax? RDBMSs support sql languages, noSQL DBMSs are schema less. But is there any schema less that support a query language similar to sql?

Handsome Nerd
- 17,114
- 22
- 95
- 173
0
votes
1 answer
Designing the schema for storing, editing and customizing a list
I am not very experienced in db design, and have not built something like this before, where it involved creating and managing lists, so any advice is much appreciated. Performance can be tuned later on, much more concerned about maintainability and…

meow
- 27,476
- 33
- 116
- 177
-1
votes
1 answer
MongoDB: Designing a db for saving chats / offline / undelivered chats
I am trying to create a mongodb design to support a chat application. The system needs to write the message to a collection with a status of delivered (boolean) and read (boolean).
1 message would be able to be sent to more than 1 person.
Anybody…

Martin
- 23,844
- 55
- 201
- 327
-4
votes
2 answers
What are the real-time compute solutions that can take raw semistructured data as input?
Are there any technologies that can take raw semi-structured, schema-less big data input (say from HDFS or S3), perform near-real-time computation on it, and generate output that can be queried or plugged in to BI tools?
If not, is anyone at least…

jbx72487
- 91
- 6