Seems like all the NoSQL databases eventually implement SQL, maybe we should use EventuallySQL instead NoSQL
Elasticsearch SQL
11–20 of 63 posts
Re: Elasticsearch SQL
#12I look forward to a future where everything is SQL at this point. It seems we have spent a significant amount of effort avoiding it, but it time and time again is the best way to query your data. I recently started using Steampipe and it has made my life about 30x better not having to deal with the AWS or Slack API. Essentially a tool to let you query their APIs using SQL, behind the scenes it boots up a Postgres dat…
Of course, not all is perfect because no one actually supports ANSI SQL, and everyone has their own extensions and incompatibilities so you'll probably have to at least tweak some things. Besides, string concatenation isn't exactly a fantastic way to communicate with a database in the first place. But at this point it's pretty much the only thing we've got that's even vaguely universal.
Re: Elasticsearch SQL
#13I’m conflicted on efforts like this. On the one hand SQL is for better or worse the Lingua Franca of database interfaces. On the other hand these half hearted, castrated implementations rarely work with tools geared towards working with true relational stores. The only real gain here is the surface level familiarity and of course the big fat check mark that the marketing team can put on the brochure to say “why, yes…
Re: Elasticsearch SQL
#14Re: Elasticsearch SQL
#15Seems like all the NoSQL databases eventually implement SQL, maybe we should use EventuallySQL instead NoSQL
MongoDB took about 8 years to fully implement SQL features but they forced it into their god-awful syntax. At least Elastic stuck with SQL?
Re: Elasticsearch SQL
#16Earlier quoted context omitted.
MongoDB took about 8 years to fully implement SQL features but they forced it into their god-awful syntax. At least Elastic stuck with SQL?
MongoDB has an SQL interface these days if you need it https://www.mongodb.com/atlas/sql
Re: Elasticsearch SQL
#17Re: Elasticsearch SQL
#18Re: Elasticsearch SQL
#19Re: Elasticsearch SQL
#20I look forward to a future where everything is SQL at this point. It seems we have spent a significant amount of effort avoiding it, but it time and time again is the best way to query your data. I recently started using Steampipe and it has made my life about 30x better not having to deal with the AWS or Slack API. Essentially a tool to let you query their APIs using SQL, behind the scenes it boots up a Postgres dat…
> SELECT blah FROM source
vs
> FROM source SELECT blah
Fixing this would permit some very useful developer features.