AxelRHD
I found a topic about NOSQL-Database of 2016. Since then nothing new. We have a Couchbase with tons of reporting data exctracted out of our RDBMS-live system.
I will give Phoenix a try and build up a little reporting-system, using this data from Couchbase. Trying to use the couchie-lib I got a warning during compilation and errors trying to establish a connection. Libcouchbase is installed and it works with other languages like ruby.
Can somebody tell me how to connect to Couchbase without the REST-Api? Or which NOSQL-Databases do you use for heavy data in connection with Elixir?
Thanks!
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
AxelRHD
Really no one using NOSQL with elixir, who could tell about his experiences? I am open for good ideas who might lead to a change of the database It was the N1SQL-Language we liked the most with Couchbase. Map-Reduce is a really ugly thing in my opinion.
gdub01
I had tried GitHub - chitika/cberl: NIF based Erlang bindings for Couchbase · GitHub but for our needs we required N1QL to work and the n1ql queries kept crashing elixir thru the nifs. We ultimately ended up using the REST API’s. Unfortunately I haven’t been able to open source the client, but it runs well for our relatively low data requirements.
With Couchbase’s websocket connection you can get a change feed going pretty well too. But the bulk of data operations is done over REST in our case.
OvermindDL1
I use some NoSQL things, but that is ‘through’ PostgreSQL, which has NoSQL table support in it. ^.^;
AxelRHD
Ok, I will try it over the N1QL-API. @gdub01, do you know if there is a special API for document manipulation? I can’t find it in the docs.
@OvermindDL1: are you happy with PostgreSQL? I didnt’ like the authorization-procedures and the documentation in connection with this topic.
An Elixir adapter using the libcouchbase (again) would be great. Unfortunately my knowledge of Elixir is not so experienced yet to do it on my own. Maybe someone can compensate this gap in the near future.
Thank you for your input so far.
OvermindDL1
I love it, been using it for many years. What authorization procedures and documentation though?
AxelRHD
As far as I remember the user management ist spreaded over config files and additionally user granting in the database. The whole ecosystem of the database was not mine. I always prefered MySQL (and later MariaDB). But I love the approach of the NoSQL Databases. Especially Couchbase with it’s N1SQL query language.
OvermindDL1
I’m not sure what that is referencing at all actually…
PostgreSQL users exist in a table, fully editable via SQL and all? o.O
As do schema definitions, tables, enumerations, custom types, FDW, etc… Everything is accessible via SQL in it, as long as you have the permissions. ^.^
MySQL/MariaDB are both lacking a lot of features that PostgreSQL has, there is never ever a reason to chose them over PostgreSQL.
Never heard of it? What’s it like? Hmm, a quick googling shows that it is a restricted set of normal SQL, so why not just use normal SQL then as it ‘looks’ like any valid N1SQL is also valid SQL (swapping
"for'and a few other minor things of course)? I’m not really seeing anything it gains over normal SQL? Can you demonstrate something it can do more easily than normal SQL? I’m quite curious.Also, SQL is just one dialect that PostgreSQL supports, it has an entirely pluggable language system, there are others.
In what way? You can do the same in PostgreSQL for KV storage, in addition in PostgreSQL you can add arbitrary index tables, views, materialized views, functions, and more that I’ve not seen any pure NoSQL system capable of doing?
gdub01
We ended up using https://developer.couchbase.com/documentation/mobile/1.5/references/sync-gateway/admin-rest-api/index.html which is the sync-gateway api… which ultimately makes change to docs on the server while ensuring the sync gateway stays in sync with the server.
However for N1QL, you have to use the couchbase server api. https://developer.couchbase.com/documentation/server/5.0/n1ql/n1ql-intro/queriesandresults.html
AxelRHD
Ok. I guess I hadn’t a full or deaper look at Posgre, giving it a real chance.
We have a lot of dependencies between tables (in production RDBMS). They are predestined for nested document objects. We prefered the Couchbase because N1SQL has a very SQL-like syntax, that most people around can read and understand easily. Not thousands of joins required.
AxelRHD
Thanks to @gdub01 I implemented Tesla yesterday. Testing today looks really good. As long as there is no library, you can fire your statements over Tesla to the API with a few lines of code: