πŸ’Ύ Serverless URL Engine
Logo

Serverless URL Engine Tables

Store and Access your data with zero effort - like a pastie.
Free anywhere, anytime - all you need is a ClickHouse Client.

❀️ Powered by CloudFlare Workers and Deta Cloud Base ❀️
image

How and Why?

Simple

Sharing quick table datasets between CH servers is now fun

Open

No signups, No logins. Everything is public, just like a pastie service

Free

No costs, everything runs on free serverless cloud workers

Unlimited

As long as Deta Cloud Base is unlimited, so are your tables
image

Ready? Get your own table in zero minutes ⏱️

Choose a unique URL path
Since there are no logins or signups, all data is hidden in public. The only protection is your own secret URL path.
Choose your URL path wisely (or use a secure hash), example:
SET custom_url = 'https://urleng.com/supersecret_token'
INSERT data
It's time to insert some data. The serverless table will automatically adapt to the schema insertsINSERT INTO FUNCTION url(getSetting('custom_url'), JSONEachRow, 'key String, value UInt64') VALUES ('hello', 1)
SELECT data
Let's read our data back and apply some logic for fun. Note due to how ClickHouse works, the full table is read.SELECT * FROM url(getSetting('custom_url'), JSONEachRow)
CREATE URL Table
If you plan on using the data frequently, you can create a persistent URL Engine table. Choose any schema, too.:) CREATE TABLE default.url_engine_distributed
(
`key` String,
`value` UInt64,
)
ENGINE = URL('https://urleng.com/supersecret', 'JSONEachRow')


​:) INSERT INTO url_engine_distributed VALUES ('hello', 1), ('world', 2)
:) SELECT * FROM url_engine_distributed

β€‹β”Œβ”€key──┬─value┐
β”‚ hello β”‚ 1 β”‚
β”‚ world β”‚ 2 β”‚
β””β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”˜

2 rows in set. Elapsed: 0.185 sec.

πŸ’€ Service Disclaimers

Terms of Use

No warranties of any kind, either express or implied. Data can be removed or lost at any moment of time. Use at your own risk.

Security

This service does not provide any security or privacy. All data is stored using free or public clouds. Use at your own risk.

Cookies

This service does not collect, store or use cookies.

Limitations

Worker execution time limits might crop large INSERT queries