Raumfahrt: Nasa empfängt Signal von Voyager 2
Die Nasa will versuchen, den Fehler mit der Antennenausrichtung zu beheben. (Nasa, Raumfahrt)
Quelle: Golem
Die Nasa will versuchen, den Fehler mit der Antennenausrichtung zu beheben. (Nasa, Raumfahrt)
Quelle: Golem
A domain is your most valuable online asset. A great domain name says something about you—your personality, your work, your creative spark. People understand this intuitively: when coming up with new ideas for a business or website, we don’t start with design or specific content. We start by giving it a name.
But if your domain name is currently with Google Domains, things recently became complicated. You may have heard that your account has been sold to Squarespace. Everything is expected to transfer and close later this year.
Fortunately for you, you’re not locked into that deal. And we think we can do better. For the first million domains that move from Google to WordPress.com, we’ll pay your transfer fee, which also extends your registration for an additional year.
That’s just the beginning. Here’s our commitment to you when you bring your domain from Google to WordPress.com:
Your renewal price will be the same or even lower than what you were paying with Google Domains—and that goes for every one of the 400+ top-level domains (TLDs) we offer. This will also apply to existing WordPress.com customers across most domains, meaning that in many cases we’re lowering your prices!
This isn’t a temporary thing. We’re committed to keeping domain prices low, and will only raise them if our wholesale costs go up (we’ll run our domains business like Costco).
Get started now
You may know WordPress.com as a leading platform for building stunning websites, but we’ve been a domain name provider for over a decade. You don’t even need a site or hosting plan to manage your domains with us.
And you’re getting much more than just a URL:
Performance: Our DNS speeds are faster than Google, GoDaddy, and DigitalOcean. But don’t take our word for it. Feel free to check for yourself at dnsperf.com.
Privacy: Unlike at many other registrars, privacy protection is free. (There are a few exclusions for non-U.S. domains.)
Security: We install SSL for free for all domains hosted with us. And when you host your site at WordPress.com, we provide serious security features to keep your site running smoothly such as real-time backups, one-click restores, malware scanning, WAF (web application firewall), DDOS mitigation, and more.
What it really comes down to is that WordPress.com, along with the larger Automattic family, is committed to the open and inclusive web. Our mission is to democratize publishing for the entire world. Ultimately, we will always support your ability to truly own your content and identity on the web.
And it all starts with your domain.
Get started now
Quelle: RedHat Stack
This blog post discusses a feature available now in Compose v2.20.0 and in our upcoming Docker Desktop 4.22 release.
The docker command line supports many flags to fine-tune your container, and it’s difficult to remember them all when replicating an environment. Doing so is even harder when your application is not a single container but a combination of many containers with various dependency relationships. Based on this, Docker Compose quickly became a popular tool because it lets users declare all the infrastructure details for a container-based application into a single YAML file using a simple syntax directly inspired by the docker run… command line.
Still, an issue persists for large applications using dozens, maybe hundreds, of containers, with ownership distributed across multiple teams. When using a monorepo, teams often have their own “local” Docker Compose file to run a subset of the application, but then they need to rely on other teams to provide a reference Compose file that defines the expected way to run their own subset.
This issue is not new and was debated in 2014 when Docker Compose was a fresh new project and issue numbers had only three digits. Now we’ve introduced the ability to “compose compose files” to address this need — even before this issue reaches its 10th anniversary!
In this article, we’ll show how the new include attribute, introduced in Docker Compose 2.20, makes Compose files more modular and reusable.
Extend a Compose file
Docker Compose lets you reuse an existing Compose file using the extends mechanism. This special configuration attribute lets you refer to another Compose file and select a service you want to also use in your own application, with the ability to override attributes for your own needs.
services:
database:
extends:
file: ../commons/compose.yaml
service: db
That’s a good solution as long as you only need a single service to be shared, and you know about its internal details so you know how to tweak configuration. But, it is not an acceptable solution when you want to reuse someone else’s configuration as a “black box” and don’t know about its own dependencies.
Merge Compose files
Another option is to merge a set of Compose files together. Docker Compose accepts a set of files and will merge and override the service definition to eventually create a composite Compose application model.
This approach has been utilized for years, but it comes with a specific challenge. Namely, Docker Compose supports relative paths for the many resources to be included in the application model, such as: build context for service images, location of file defining environment variables, path to a local directory used in a bind-mounted volume.
With such a constraint, code organization in a monorepo can become difficult, as a natural choice would be to have dedicated folders per team or component, but then the Compose files relative paths won’t be relevant.
Let’s play the role of the “database” team and define a Compose file for the service we are responsible for. Next, we build our own image from a Dockerfile and have a reference environment set as an env file:
services:
database:
builld: .
env-file:
– ./db.env
Now, let’s switch to another team and build a web application, which requires access to the database:
services:
webapp:
depends_on:
– database
Sounds good, until we try to combine those, running the following from the webapp directory: docker compose -f compose.yaml -f ../database/compose.yaml.
In doing so, the relative paths set by the second Compose file won’t get resolved as designed by the authors but from the local working directory. Thus, the resulting application won’t work as expected.
Reuse content from other teams
The include flag was introduced for this exact need. As the name suggests, this new top-level attribute will get a whole Compose file included in your own application model, just like you did a full copy/paste. The only difference is that it will manage relative path references so that the included Compose file will be parsed the way the author expects, running from its original location. This capability makes it way easier for you to reuse content from another team, without needing to know the exact details.
include:
../database/compose.yaml
services:
webapp:
depends_on:
– database
In this example, an infrastructure team has prepared a Compose file to manage a database service, maybe including some replicas, web UI to inspect data, isolated networks, volumes for data persistence, etc.
An application relying on this service doesn’t need to know about those infrastructure details and will consume the Compose file as a building block it can rely on. Thus, the infrastructure team can refactor its own database component to introduce additional services without the dependent teams being impacted.
This approach also comes with the bonus that the dependency on another Compose file is now explicit, and users don’t need to include additional flags on each Compose command they run. They can instead rely on the beloved docker compose up command without any additional knowledge of the application architecture.
Conclusion
With microservices and monorepo, it becomes common for an application to be split into dozens of services, and complexity is moved from code into infrastructure and configuration file. Docker Compose fits well with simple applications but is harder to use in such a context. At least it was, until now.
With include support, Docker Compose makes it easier to modularize such complex applications into sub-compose files. This capability allows application configuration to be simpler and more explicit. It also helps to reflect the engineering team responsible for the code in the config file organization. With each team able to reflect in configuration the way it depends on other’s work, there’s a natural approach to compose.yaml files organization.
Read more about this new include feature on the dedicated Compose specification page and experiment with it by upgrading Docker Compose to v2.20 or later.
Learn more
Read the include documentation
Get the latest release of Docker Desktop.
Vote on what’s next! Check out our public roadmap.
Have questions? The Docker community is here to help
New to Docker? Get started.
Quelle: https://blog.docker.com/feed/
AWS AppConfig, eine Funktion von AWS Systems Manager, kündigt die Unterstützung für den AWS-AppConfig-Agent auf der Compute Cloud von Amazon Elastic (Amazon EC2) an. Mithilfe von Feature-Kennzeichnungen und dynamischer Konfiguration ermöglicht AWS AppConfig den Kunden eine schnellere und sicherere Bereitstellung und entkoppelt Software-Releases von Code-Bereitstellungen. Der AWS-AppConfig-Agent ist eine clientseitige Software, die Konfigurationsdaten im Auftrag von Kunden verwaltet. Bisher mussten die Kunden bei der Ausführung von Anwendungen auf Amazon EC2 die Abfrage und Zwischenspeicherung von Daten selbst verwalten. Jetzt kümmert sich der Agent um diese Aufgaben. Mit diesem Update bietet der AWS-AppConfig-Agent jetzt native Unterstützung für die folgenden Compute-Services: AWS Lambda, Amazon Elastic Container Service (Amazon ECS), Amazon Elastic Kubernetes Service (Amazon EKS) und Amazon EC2.
Quelle: aws.amazon.com
AWS-Glue-Crawlers unterstützen jetzt Apache-Hudi-Tabellen. So können Kunden Daten in Apache-Hudi-Tabellen direkt von AWS-Analyseservices wie Amazon Athena aus abfragen. Apache-Hudi ist ein Open-Source-Tabellenformat, das Datenbank- und Data-Warehouse-Funktionen für den Data Lake bereitstellt. Apache-Hudi unterstützt Dateningenieure bei der Verwaltung sich ständig weiterentwickelnder Datensätze bei gleichzeitiger Aufrechterhaltung der Abfrageleistung.
Quelle: aws.amazon.com
Wir freuen uns, die Unterstützung von Apache Spark mit Java 17 in EMR auf EKS ankündigen zu können. AWS-Kunden können jetzt Java 17 als unterstützte Java-Laufzeit nutzen, um Spark-Workloads auf Amazon EMR auf EKS auszuführen und von der Sprach- und Leistungsverbesserung von Java 17 zu profitieren. Amazon EMR auf EKS ermöglicht Kunden die Ausführung von Open-Source-Big-Data-Frameworks wie Apache Spark auf Amazon EKS.
Quelle: aws.amazon.com
Kunden, die Amazon Simple Notification Service (Amazon SNS) zum Senden mobiler Push-Benachrichtigungen verwenden, können ihre Anwendungen jetzt in zwölf weiteren AWS-Regionen hosten, darunter Afrika (Kapstadt), Asien-Pazifik (Hongkong), Asien-Pazifik (Jakarta), Asien-Pazifik (Osaka), Kanada (Zentral), Europa (London), Europa (Mailand), Europa (Paris), Europa (Stockholm), Naher Osten (Bahrain), Naher Osten (VAE) und USA Ost (Ohio).
Quelle: aws.amazon.com
Die Sicherheit der eigenen Wohnung oder des Hauses muss nicht viel kosten. Das Nuki Smart Lock 3.0 Pro gibt es bei Amazon zum Angebotspreis. (Smartlock, Türschloss)
Quelle: Golem
Mithilfe von künstlicher Intelligenz will Youtube künftig automatisch generierte Videobeschreibungen erstellen – zunächst wird getestet. (Youtube, Google)
Quelle: Golem
Saugroboter nehmen dem Besitzer beim Hausputz viel Arbeit ab. Mit dem Modell von iRobot funktioniert dies auch noch zu sehr günstigen Konditionen. (Saugroboter, iRobot)
Quelle: Golem