Questions tagged [oracle-nosql]

The Oracle NoSQL Database is a distributed key-value database. It is designed to provide highly reliable, scalable and available data storage across a configurable set of systems that function as storage nodes.

The Oracle NoSQL Database is a distributed key-value database. It is designed to provide highly reliable, scalable and available data storage across a configurable set of systems that function as storage nodes.

Data is stored as key-value pairs, which are written to particular storage node(s), based on the hashed value of the primary key. Storage nodes are replicated to ensure high availability, rapid failover in the event of a node failure and optimal load balancing of queries. Customer applications are written using an easy-to-use Java API to read and write data. The NoSQL Database links with the customer application, providing access to the data via the appropriate storage node for the requested key-value:

Image

The NoSQL Database intelligent driver includes the hashing algorithms to ensure proper data distribution, as well as state and performance information about each storage node which enable it to provide optimal load balancing and query processing. The NoSQL Database provides easy administration via either a web console or command line interface.


References

95 questions
5
votes
4 answers

NoSQL databases: what about read consistency?

From what I can make out NoSQL databases might be a good option for high intensity data read applications, but are a less good fit if you need to do also do a lot data updates and transactionality is very important to you (what with there being no…
copt
  • 83
  • 1
  • 7
3
votes
3 answers

Where does Oracle NoSQL database fit in?

The various NoSQL database systems all make their own specific choices and tradeoffs, making them more or less suitable for different use-cases. Fortunately, there are many good comparisons (also here on Stackoverflow) that explain and contrast the…
Thilo
  • 257,207
  • 101
  • 511
  • 656
3
votes
1 answer

Metadata information in Oracle NoSql

I want to view the schema of data which are being stored in kvstore , like what are the keys and their type and also values and their type(as Oracle NoSql is a key-value store). As per my knowledge we can use "show schema " command but it will work…
ashish
  • 171
  • 1
  • 7
2
votes
1 answer

CosmosDB query multiple items

Hi i using Azure CosmosDB database,I trying to query multiple data in items .' In Collection is three array author_documents,book_documents,joining_documents. All data are filled up in these arrays. The Collection have this data: [ { …
1
vote
1 answer

Security Issue: Reusing the NoSQL handle multiple times in Oracle NoSQL Database Cloud Service

We are testing a bunch of microservices that connect to Oracle NoSQL Database Cloud Service for storing and querying the metadata/event information of our services. Question on whether the NoSQL handle can be used for every request was raised in my…
R2D2appdev
  • 11
  • 2
1
vote
1 answer

Oracle JSON document select query performance tuning

Table description COLUMN DATA_TYPE NULLABLE DEFAULT_VALUE ID VARCHAR2(16) No UPDATED_DATE TIMESTAMP(6) Yes DETAILS CLOB Yes TX_STATUS VARCHAR2(10) Yes TX_USER …
Yugamani
  • 33
  • 1
  • 8
1
vote
0 answers

Access secured Oracle NoSql DB using JPA

I am trying to access Oracle NoSql DB using JPA (api - org.eclipse.persistence.jpa.PersistenceProvider). I am facing two issues : How to secure my Oracle NoSql store using just basic authentication (login/password only) ? Oracle docs at:…
Anurag
  • 51
  • 3
1
vote
1 answer

java -jar lib/kvstore.jar ping - ConnectException when using IPAddress

I created a Oracle Linux VM (ipAddr 192.168.10.2) on my windows machine. On this VM, I further created a kvlite docker container. In Dockerfile following is CMD issued: CMD ["java", "-jar", "lib/kvstore.jar", "kvlite"] Once kvlite docker container…
Anurag
  • 51
  • 3
1
vote
1 answer

Unable to connect to store when configuring kvstore via ssl

I tried creating a ssl configuration for my kvstore, I configure the store and create a user root , however whenever I try to connect to a store , I get the following error : - kv-> connect store -name OracleNoSqlSecurityTests -security…
Chhavi Gangwal
  • 1,166
  • 9
  • 13
1
vote
1 answer

How do I connect OBIEE 11g and NoSQL ?

I need a method by which I can connect OBIEE 11g and NoSQL. I need to transfer the connects in NoSQL to OBIEE reports. NoSQL is a software that is used for storage of data using key and values. How do I go about this? How do I connect the database?
1
vote
2 answers

Oracle NoSQL Database - Developing with it

I recently came in touch with the Oracle NoSQL Database. It appears as though one can connect to it only from Java (more info here). Is it possible to work with this DB from other languages, like say: Python, Erlang, C++ e.t.c. ? OR its like the…
Muzaaya Joshua
  • 7,736
  • 3
  • 47
  • 86
0
votes
2 answers

Spring Data : @NosqlTable add Map variable

I am trying to add a Map field in my oracle nosqltable (in the example given here https://docs.oracle.com/en/database/other-databases/nosql-database/21.1/java-driver-table/accessing-nosql-using-sdf.html) but when saving its not getting saved…
user3346812
  • 33
  • 1
  • 7
0
votes
1 answer

Query to list all tables in Oracle NoSQL

I need to list down all user or system tables available in Oracle NoSQL Database. Please help with query. Thanks.
Rupesh
  • 1
  • 1
  • 2
0
votes
1 answer

Oracle NoSQL Database connector in vscode gives NoSQLUnauthorized error

Error fetching Tables : NoSQLAuthorizationError: [REQUEST_TIMEOUT] Authorization error: [operation timeout]: Failed to login to kvstore. Operation timed out, see the cause
0
votes
2 answers

Socket Hangup Error when connecting Oracle NoSQL kvstore

I had an issue in nodejs, when I use the API link https://hostname:8089 return new NoSQLClient({ serviceType: ServiceType.KVSTORE, endpoint: 'localhost:8089' }); I'm getting error like this, Error:…
1
2 3 4 5 6 7