logo
뉴스

회사 소식 SereneDB launches superfast S3 data search engine.

인증
중국 Beijing Qianxing Jietong Technology Co., Ltd. 인증
중국 Beijing Qianxing Jietong Technology Co., Ltd. 인증
고객 검토
베이징 첸싱 지에통 테크 주식회사의 영업 사원은 매우 전문적이고 참을성 있습니다. 그들은 빨리 인용을 제공할 수 있습니다. 제품의 품질과 패키징은 또한 매우 좋습니다. 우리의 협력은 매우 매끄럽습니다.

—— 《Festfing DV》LLC

내가 긴급히 인텔 CPU와 토시바 SSD를 찾고 있었늘 때, 베이징 첸싱 지에통 기술 주식회사로부터의 샌디는 나에게 많은 도움을 주었고, 나에게 빨리 필요로 한 제품을 가져다 주었습니다. 나는 정말로 그녀를 압니다.

—— 고양이 엔

베이징 첸싱 지에통 기술 주식회사의 샌디는 내가 서버를 구입할 때 제시간에 나에게 구성 오류를 상기시킬 수 있는 매우 주의깊은 판매원을 있습니다. 엔지니어들은 또한 매우 전문적이고, 빠르게 테스팅 프로세스를 완료할 수 있습니다.

—— 스트렐킨 미하일 블라드미로비치

베이징 첸싱지에통과의 협업에 매우 만족합니다. 제품 품질이 훌륭하고, 배송도 항상 제 시간에 이루어집니다. 영업팀은 전문적이고, 인내심이 많으며, 모든 질문에 매우 친절하게 답변해 줍니다. 그들의 지원에 진심으로 감사드리며, 장기적인 파트너십을 기대합니다. 강력 추천합니다!

—— Ahmad Navid

품질: 제 공급업체와의 좋은 경험. 미크로틱 RB3011은 이미 사용되었지만 매우 좋은 상태로 모든 것이 완벽하게 작동합니다. 통신은 빠르고 원활했습니다.그리고 제 모든 걱정은 빠르게 해결되었습니다.매우 신뢰할 수 있는 공급자

—— 제란 콜레시오

제가 지금 온라인 채팅 해요
회사 뉴스
SereneDB launches superfast S3 data search engine.


German startup SereneDB’s Krummelanke is claimed to be the fastest database search engine in the world, combining search and analytics in one product.


The company states AI agents fire hundreds of hybrid find-and-count queries per second, yet every database in production was built for human users. Its Krummelanke engine is designed to handle high-speed agent-scale database search. Krummelanke is open-source under Apache 2.0, compatible with Postgres and Elastic, and can run full-text search over data stored on S3.


에 대한 최신 회사 뉴스 SereneDB launches superfast S3 data search engine.  0


Co-founder and CEO Alexander Malandin said: “The agentic future is, above all, a data-load problem. Today an AI agent is a single bee visiting a single flower. What is coming is the swarm: more agents than employees in every organization, each firing hundreds of queries a second. Infrastructure built for human users is neither fast enough nor cost-efficient enough to survive that load. The agentic future requires a new generation of database: ultra-fast search and ultra-fast analytics in one engine, where search operations are measured in nanoseconds and a question over billions of records comes back in milliseconds. One that treats agents as first-class users, withstands their scale, and reaches data wherever it lives. That is what we built, and with SereneDB Krummelanke we are putting it into production.”


SereneDB notes analytical engines like Snowflake, BigQuery, DuckDB over Parquet, and lakehouses generally read columnar data straight from S3 by default. Large sequential scans fit the latency profile of object storage, unlike full text search. Full text search requires an inverted index that lists content items such as words or numbers and maps them to their locations within tables or documents. Inverted index search generates many random accesses. Typically, Lucene-based search engines store indexes on fast local storage separate from the main lakehouse data store. SereneDB says “searchable” data within an Elastic deployment means maintaining a second copy on flash, the most expensive storage tier available.


We asked how SereneDB’s search differs from general object storage data search such as Cloudian HyperStore search.

CTO Andrey Abramov told us: “Cloudian is an S3-compatible storage vendor and HyperSearch is a service attached to the bucket. It collects metadata of stored objects and indexes that metadata inside an underlying search component; this is a separate indexing system populated via data copying. Many services implement search this way and they work well.”


At the search engine core level, however: “There are only a handful of core search technologies and libraries worldwide: Lucene, Tantivy, and IResearch built by SereneDB. Elasticsearch, OpenSearch, Solr and many others are Lucene derivatives and follow a copy-first model. They cannot search data they do not hold locally, so any data to be searched must be extracted, transferred and duplicated into the search cluster.”


SereneDB works differently: “SereneDB indexes data where it already resides. Parquet files and Iceberg tables on S3 remain the source of truth. We store only the derived index. The search itself — full-text with BM25 ranking, vector and geo search — runs against that index with a small local hot set. The Iceberg use case serves as a concrete example: a customer writes changes to an Iceberg table on S3, SereneDB picks up those updates, and serves search and analytics over them. You may point any number of SereneDB nodes at the same table.”


We asked whether object storage, database or lakehouse vendors could adopt SereneDB’s search engine as an alternative to Lucene and its derivatives. Abramov said: “Yes, absolutely! We can not only replace ElasticSearch, OpenSearch, Solr, CrateDB which are pure Lucene derivatives, but also augment them with analytical capabilities. For example, we maintain dedicated documentation covering migration from ElasticSearch.”


The firm has run benchmarks comparing its search engine speed against popular alternatives and outperforming them. Abramov said: “Our goal with these benchmarks was to demonstrate that SereneDB is a faster and modern alternative to the traditional search stack.”


Benchmark Details


SereneDB’s SearchBench includes 92 search and analytics queries executed against 100 million and 1 billion OpenTelemetry log records, the TextBench dataset published by ClickHouse with 15 stored columns per record. All tests run on a single server. Every competing engine was tuned using published configuration parameters, with a 60-second timeout per query. Any query exceeding this limit is marked as did not finish.


Benchmark results for more than a dozen popular search engines are available on a dashboard. Tested engines include Elasticsearch across four configurations, OpenSearch, ParadeDB, CrateDB, ArangoDB, TigerDB with row and column store variants, and vanilla Postgres, with additional engines to be added. Timing uses three runs per query, taking the best result from the final two runs. One query is executed at a time from a single client and result caching is disabled. The dashboard measures latency rather than throughput.


에 대한 최신 회사 뉴스 SereneDB launches superfast S3 data search engine.  1


The dashboard’s result cells show performance ratios relative to the fastest engine for each query, where the fastest result equals 1.0x. The overall score is calculated as the geometric mean of these 92 per-query ratios. SereneDB explains this standard ratio averaging method prevents a single outlier query from skewing results.


SereneDB achieves a geometric mean of 1.05x on the 100 million record dataset and 1.07x on the 1 billion record dataset. Across all 92 queries, it is either the fastest engine or within a few percent of the top speed. ElasticSearch ranks second with a 2.8x geometric mean on the 100 million dataset. TigerData column store scores 2.24x on the 1 billion dataset, with numerous timeouts. Vanilla Postgres reaches 204x on the 100 million dataset and 50.69x on the 1 billion dataset.


To simplify comparison across vendors beyond the complex dashboard view, we created a chart showing ordered geometric mean scores from the 100 million benchmark based on screenshot data.


Performance gaps are extremely wide, so we excluded scores above 10 and redrew the chart. As SereneDB states, its search engine leads the tested group.


SereneDB founding and funding


SereneDB was founded in Berlin in 2025 by Alexander Malandin, CEO with prior enterprise sales experience at EMC, Dell and ArangoDB; Andrey Abramov, CTO with search R&D background at Quest Software, EMC and ArangoDB; and Valery Mironov, core engineer previously at ArangoDB and YDB. The eight-person engineering team has collaborated for more than 16 years. Its search core IResearch has been under development since 2014.


The startup announced $2.1 million in pre-seed funding in December 2025, led by Entourage and High-Tech Gründerfonds.

SereneDB Krummelanke is open source under the Apache 2.0 license and available on GitHub.


Beijing Qianxing Jietong Technology Co., Ltd.
Sandy Yang/Global Strategy Director
WhatsApp / WeChat: +86 13426366826
Email: yangyd@qianxingdata.com
Website: www.qianxingdata.com/www.storagesserver.com
Business Focus:
ICT Product Distribution/System Integration & Services/Infrastructure Solutions
With 20+ years of IT distribution experience, we partner with leading global brands to deliver reliable products and professional services.
“Using Technology to Build an Intelligent World”Your Trusted ICT Product Service Provider!

선술집 시간 : 2026-09-23 10:33:49 >> 뉴스 명부
연락처 세부 사항
Beijing Qianxing Jietong Technology Co., Ltd.

담당자: Ms. Sandy Yang

전화 번호: 13426366826

회사에 직접 문의 보내기 (0 / 3000)