cloudnode is built for hosting small single-node servers on home systems in the open-source, and for engineering containerized apps on top of its core services, including ingress, search, storage, code bases, cloud functions, apis, and system logging. These containerized apps can be distributed as any others.
cloudnode is built for novice engineers to prevent repeating development across the open-source and empower rapid expand core services and prototyping of features:
- search and storage using scalable engines
- self-hosting of software services and code bases
- cloud functions from direct source code
- building from scalable frameworks including ElasticSearch
pip install cloudnode
Docker is required to host applications including search.
SwiftData is an extension of dataclasses
built for typed sharing, storage, and search across
filesystems
and ElasticSearch
. It includes ease-of-use tools and can directly spin-up search engines, and interact
with common or complex query types, including search bar text
, elasticsearch-dsl
, and SQL
. SwiftData also extends
fields for working with complex datatypes such as process flags, deep learning embeddings, geospatial data, and others;
see our SpotifyPlaylist
example and demo.py
for a full working example of the SwiftData database search system.
from cloudnode import SwiftData
import dataclasses
@dataclasses.dataclass
class Meme(SwiftData):
url_image: str
url_knowyour: str
text_image: str
EasyAPI
exists to transfer functions from locked-on-the-computer resources to exposed, secure world-wide-web APIs, and
Infrastructure
exists to transform any system of code to a backend SDK for constructing applications. With these two
resources the difference between code you construct for processing the computer and exposed across applications shrinks
to zero.
This code sample is part of a full working example in demo_swiftdata.py
.
from cloudnode import SwiftData, sd, SwiftDataBackend
import dataclasses
@dataclasses.dataclass
class WebPage(SwiftData):
url: sd.string() # an exact string; facilitating exact matches only
domain: sd.string()
text: sd.string(analyze=True) # a body of text; tokenized, analyzed and searchable
html: sd.string(dont_index=True) # a string stored in the engine but not intended for search
labels: sd.string(list=True) # a list of exact strings; matching one or all is possible
now: sd.timestamp() # a timestamp; searchable using windows of time
geo: sd.geopoint(list=True) # a list of gps defined spots; searchable via radius
items = [] # see demo_swiftdata.py
applet = "demo"
index = "early"
database_password = "password"
# start the search engine backend
swift = SwiftDataBackend().start(database_password, exist_ok=True, rebuild=True)
WebPage.create_index(index, exist_ok=True)
for item in items: # if the items are not already in the database; add then the same was as saving to file system
if not WebPage.exists(index, item.id, es=True):
item.save(index, es=True)
WebPage.refresh_index(index, es=True)
# familiar search bar queries is one example of how to access search
results = WebPage.search_bar(index, "domain:nytimes.com text:covid")
# snapshots persist after deleting docker
swift.snapshot_save(applet)
print(swift.snapshot_list(applet))
swift.stop(not_exist_ok=False)
It may not look like much yet but the fundamentals here are very important. With just the same effort as building a Python function, the software can be injected into modern API frameworks complete with authentication, cloud logging, performance statistics, and transformed into modern cloud functions hosted on a home server or any external computer.
Infrastructure code and configurations are kept entirely separated from software code so that every function can be built into infrastructure without requiring entangling of imports, and maintaining clean code.
This code sample is part of a full working example in demo_easyapi.py
to show the fundamentals of building functions
which become backend data services or dynamic webpages and more. This package is an early release and still contains
numerous imperfections and mistakes, and edge cases which will be handled from our existing solutions in new releases.
from cloudnode import Infrastructure
class MyAppFunctions:
@staticmethod
def george_washington_readers_digest(n_quotes=1): pass
app_functions = [
dict(source="demo_easyapi:MyAppFunctions.george_washington_readers_digest"),
]
app_hostport = "0.0.0.0:5004"
username = "myusername"
Infrastructure.clear().set_admin(username)
Infrastructure.servlet(app_hostport, app_functions)
Infrastructure.blocking_start()
We have SwiftData
for storage and search and Infrastructure
for hosting data and web servers?
This code sample is part of a full working example in demo_infrastructure.py
.
Okay. We have SwiftData
data-intense backends. What about front-ends?
This code sample is part of a full working example in demo_shiny.py
.
We are in the process of porting over from other repositories.
Inexpensive. The 3.4GHz 8GB Ace Magician is more than enough to run home servers with compute equivalent to nearly modern laptops. The external 2TB hard drive is useful for data storage when working with video or heavy data compute, and the monitor helps with debugging and seconds as a television screen. The motherboard of Ace Magician is not sufficient for hosting external GPUs, such as for deep learning, but a shocking amount of two-year old deep learning can be run effortlessly on CPUs, and we will cover GPUs when we begin hosting distributed GPU deep learning compute infrastructures ourselves at Starlight. This setup easily lasts for more than two or three years which means that $200 can put a home server in any home, garage, workshop, school, or curious student bedroom.
- Ace Magician Mini PC 8GB RAM 256GB SSD 3.4GHz ($160)
- Seenda Bluetooth Wireless Keyboard ($15)
- Logitech Wireless Mouse ($10)
Optional:
- Acer 17" Widescreen LCD Monitor ($38)
- HDMI (male) to VGA (female) Adapter ($5)
- GE 6-Outlet 2-ft Surge Protector ($9)
- SanDisk 2TB Portable External SSD ($69)
Starlight LLC
Copyright 2024
All Rights Reserved
GNU GENERAL PUBLIC LICENSE