Roy
My feedback
18 results found
-
16 votesRoy supported this idea ·
-
12 votesRoy supported this idea ·
-
6 votesRoy supported this idea ·
-
2 votes
An error occurred while saving the comment Roy supported this idea · -
1 vote
An error occurred while saving the comment Roy commented -
4 votesRoy shared this idea ·
-
7 votesRoy supported this idea ·
-
1 vote
An error occurred while saving the comment Roy commentedGiven that we have "This Time Last Month" and all the historical billing, a projection of what the current month might go up to, or even further, will be great
-
5 votes
An error occurred while saving the comment Roy commentedJust to clarify, the ask is to allow hiding of axis labels as shown in the attached image
Roy supported this idea · -
362 votes
Now in Public Preview: Introducing a Local Experience for Atlas, Atlas Search, and Atlas Vector Search with the Atlas CLI
Please feel to reply with feedback or leave comments. Happy to connect directly and include your team in our Early Access Program to provide additional help.
Roy supported this idea · -
29 votesRoy supported this idea ·
-
37 votesRoy supported this idea ·
-
5 votesRoy shared this idea ·
-
5 votesRoy shared this idea ·
-
43 votesRoy supported this idea ·
-
51 votesRoy supported this idea ·
-
89 votesRoy supported this idea ·
-
12 votes
An error occurred while saving the comment Roy commentedProvide functionality similar to the Solr Analysis screen -- https://lucene.apache.org/solr/guide/8_6/analysis-screen.html
Roy supported this idea ·
Apache Solr also implements nested facets via its [JSON Facet API](https://solr.apache.org/guide/solr/latest/query-guide/json-facet-api.html#nested-facets). A similar syntax in Atlas Search could look like this:
```js
[{
"$searchMeta": {
"facet": {
"operator": {
"text": {
"path": "title",
"query": "space"
}
},
"facets": {
"genresFacet": {
"type": "string",
"path": "genres",
"facets": {
"yearFacet": {
"type": "number",
"path": "year",
"boundaries": [1990, 2000, 2010, 2020]
}
}
}
}
}
}
}]
```
... and the output could look like this:
```js
{
"count": {
"lowerBound": NumberLong(23026)
},
"facet": {
"genresFacet": {
"buckets": [
{
"_id": "Drama", "count": NumberLong(13527),
"yearFacet": {
"buckets": [
{ "_id": 1990, "count": NumberLong(23) },
{ "_id": 2000, "count": NumberLong(89) },
{ "_id": 2010, "count": NumberLong(308) }
]
}
},
{
"_id": "Comedy", "count": NumberLong(6922),
"yearFacet": {
"buckets": [
{ "_id": 2010, "count": NumberLong(13) },
{ "_id": 2020, "count": NumberLong(28) }
]
}
}
]
}
}
}
```