Need advice about which tool to choose?Ask the StackShare community!
Elasticsearch vs Loggly: What are the differences?
1. Scalability and Performance: Elasticsearch is designed for horizontal scalability and can handle large amounts of data and traffic. It uses sharding and replication to distribute data across multiple nodes and ensure high availability. On the other hand, Loggly is a cloud-based log management service that does not offer the same scalability and performance as Elasticsearch. It relies on its own infrastructure to process and index logs, which may not be as efficient as Elasticsearch's distributed architecture.
2. Full-Text Search and Analytics: Elasticsearch is primarily built for full-text search and analytics. It uses inverted indices to provide fast search capabilities across large volumes of structured and unstructured data. Loggly, on the other hand, focuses specifically on log management and analytics. It provides pre-built dashboards and visualizations tailored for log analysis, making it easier for users to monitor and troubleshoot their systems.
3. Data Retention and Storage: Elasticsearch allows users to define data retention policies and manage the storage of their data through index lifecycle management (ILM). This gives users control over how long data is retained and how it is stored (e.g., in hot, warm, or cold storage). Loggly, on the other hand, provides a fixed retention period based on the user's subscription plan. Users have limited control over how long their logs are retained and cannot customize storage options.
4. Log Collection Methods: Elasticsearch supports various log collection methods, including agents, plugins, and integrations with external systems. It can ingest logs from different sources and protocols, making it a versatile solution for log management. Loggly, on the other hand, provides a centralized log collection system that relies on log shipping agents. While it supports popular log shipping methods like Syslog and Logstash, it does not offer the same level of flexibility as Elasticsearch.
5. Querying and Filtering: Elasticsearch provides a powerful query DSL (Domain-Specific Language) that allows users to perform complex searches and aggregations on their data. It supports filtering based on various criteria, such as time range, keyword matching, and numeric ranges. Loggly, on the other hand, offers a simplified query language that is focused on log analysis. It provides predefined search filters and allows users to perform basic search queries but lacks the advanced querying capabilities of Elasticsearch.
6. Security and Access Control: Elasticsearch offers robust security features, including authentication, authorization, and encryption. It supports role-based access control (RBAC) and integrates with external authentication providers like Active Directory and LDAP. Loggly, on the other hand, provides basic security features like HTTPS encryption and IP whitelisting but does not offer the same level of fine-grained access control as Elasticsearch. It does not support RBAC or integration with external authentication providers.
In Summary, Elasticsearch and Loggly differ in terms of scalability and performance, full-text search and analytics capabilities, data retention and storage options, log collection methods, querying and filtering capabilities, and security and access control features.
Hi, community, I'm planning to build a web service that will perform a text search in a data set off less than 3k well-structured JSON objects containing config data. I'm expecting no more than 20 MB of data. The general traits I need for this search are: - Typo tolerant (fuzzy query), so it has to match the entries even though the query does not match 100% with a word on that JSON - Allow a strict match mode - Perform the search through all the JSON values (it can reach 6 nesting levels) - Ignore all Keys of the JSON; I'm interested only in the values.
The only thing I'm researching at the moment is Elasticsearch, and since the rest of the stack is on AWS the Amazon ElasticSearch is my favorite candidate so far. Although, the only knowledge I have on it was fetched from some articles and Q&A that I read here and there. Is ElasticSearch a good path for this project? I'm also considering Amazon DynamoDB (which I also don't know of), but it does not look to cover the requirements of fuzzy-search and ignore the JSON properties. Thank you in advance for your precious advice!
Maybe you can do it with storing on S3, and query via Amazon Athena en AWS Glue. Don't know about the performance though. Fuzzy search could otherwise be done with storing a soundex value of the fields you want to search on in a MongoDB. In DynamoDB you would need indexes on every searchable field if you want it to be efficient.
I think elasticsearch should be a great fit for that use case. Using the AWS version will make your life easier. With such a small dataset you may also be able to use an in process library for searching and possibly remove the overhead of using a database. I don’t if it fits the bill, but you may also want to look into lucene.
I can tell you that Dynamo DB is definitely not a good fit for your use case. There is no fuzzy matching feature and you would need to have an index for each field you want to search or convert your data into a more searchable format for storing in Dynamo, which is something a full text search tool like elasticsearch is going to do for you.
The Amazon Elastic Search service will certainly help you do most of the heavy lifting and you won't have to maintain any of the underlying infrastructure. However, elastic search isn't trivial in nature. Typically, this will mean several days worth of work.
Over time and projects, I've over the years leveraged another solution called Algolia Search. Algolia is a fully managed, search as a service solution, which also has SDKs available for most common languages, will answer your fuzzy search requirements, and also cut down implementation and maintenance costs significantly. You should be able to get a solution up and running within a couple of minutes to an hour.
Hey everybody! (1) I am developing an android application. I have data of around 3 million record (less than a TB). I want to save that data in the cloud. Which company provides the best cloud database services that would suit my scenario? It should be secured, long term useable, and provide better services. I decided to use Firebase Realtime database. Should I stick with Firebase or are there any other companies that provide a better service?
(2) I have the functionality of searching data in my app. Same data (less than a TB). Which search solution should I use in this case? I found Elasticsearch and Algolia search. It should be secure and fast. If any other company provides better services than these, please feel free to suggest them.
Thank you!
Hi Rana, good question! From my Firebase experience, 3 million records is not too big at all, as long as the cost is within reason for you. With Firebase you will be able to access the data from anywhere, including an android app, and implement fine-grained security with JSON rules. The real-time-ness works perfectly. As a fully managed database, Firebase really takes care of everything. The only thing to watch out for is if you need complex query patterns - Firestore (also in the Firebase family) can be a better fit there.
To answer question 2: the right answer will depend on what's most important to you. Algolia is like Firebase is that it is fully-managed, very easy to set up, and has great SDKs for Android. Algolia is really a full-stack search solution in this case, and it is easy to connect with your Firebase data. Bear in mind that Algolia does cost money, so you'll want to make sure the cost is okay for you, but you will save a lot of engineering time and never have to worry about scale. The search-as-you-type performance with Algolia is flawless, as that is a primary aspect of its design. Elasticsearch can store tons of data and has all the flexibility, is hosted for cheap by many cloud services, and has many users. If you haven't done a lot with search before, the learning curve is higher than Algolia for getting the results ranked properly, and there is another learning curve if you want to do the DevOps part yourself. Both are very good platforms for search, Algolia shines when buliding your app is the most important and you don't want to spend many engineering hours, Elasticsearch shines when you have a lot of data and don't mind learning how to run and optimize it.
Rana - we use Cloud Firestore at our startup. It handles many million records without any issues. It provides you the same set of features that the Firebase Realtime Database provides on top of the indexing and security trims. The only thing to watch out for is to make sure your Cloud Functions have proper exception handling and there are no infinite loop in the code. This will be too costly if not caught quickly.
For search; Algolia is a great option, but cost is a real consideration. Indexing large number of records can be cost prohibitive for most projects. Elasticsearch is a solid alternative, but requires a little additional work to configure and maintain if you want to self-host.
Hope this helps.
Pros of Elasticsearch
- Powerful api329
- Great search engine315
- Open source231
- Restful214
- Near real-time search200
- Free98
- Search everything85
- Easy to get started54
- Analytics45
- Distributed26
- Fast search6
- More than a search engine5
- Awesome, great tool4
- Great docs4
- Highly Available3
- Easy to scale3
- Nosql DB2
- Document Store2
- Great customer support2
- Intuitive API2
- Reliable2
- Potato2
- Fast2
- Easy setup2
- Great piece of software2
- Open1
- Scalability1
- Not stable1
- Easy to get hot data1
- Github1
- Elaticsearch1
- Actively developing1
- Responsive maintainers on GitHub1
- Ecosystem1
- Community0
Pros of Loggly
- Centralized log management37
- Easy to setup25
- Great filtering21
- Live logging16
- Json log support15
- Log Management10
- Alerting10
- Great Dashboards7
- Love the product7
- Heroku Add-on4
- Easy to setup and use2
- Easy setup2
- No alerts in free plan2
- Great UI2
- Good parsing2
- Powerful2
- Fast search2
- Backup to S32
Sign up to add or upvote prosMake informed product decisions
Cons of Elasticsearch
- Resource hungry7
- Diffecult to get started6
- Expensive5
- Hard to keep stable at large scale4
Cons of Loggly
- Pricey after free plan3