Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror

Comment Re:Meanwhile... (Score 1) 117

It's China, they're subsidized and they have to build something. Even if it's empty or otherwise represents overcapacity. Of course the people who built these datacentres may eventually lease the space to companies that will be forced to use domestically-produced hardware that no one wants to use (they'd rather have NV H200s or . . . whatever else). It's just how they do things, at least for now.

Comment Re:What does this mean? (Score 3, Informative) 20

As the article mentioned, there are generally two ways that applications process data: either using patch processing or streaming data. For real-time data processing you generally use streaming data. In addition, in modern microservices architectures you generally use a messaging service between services to provide more reliability, scalability, and to more loosely couple the services.

For streaming data or messaging services, companies tend to either use a cloud service provider (CSP) native service like Google Cloud Pub/Sub or Amazon Web Services (AWS) Simple Queue Service (SQS). For companies that have their own data centers or want a uniform multi-cloud solution, they generally want a solution like Apache Kafka or a managed Kafka like Google Cloud Managed Service for Apache Kafka or Amazon Managed Streaming for Apache Kafka (MSK). Apache Kafka is faster than older solutions like RabbitMQ.

The streaming/messaging service is configured to meet the application requirements for message delivery like deliver once or deliver at least once, in order or out of order, dead letter queues, schema enforcement, etc. It allows for architectures with multiple publishers or multiple subscribers (e.g., fan-out architectures). It provides access controls, monitoring, and logging capabilities.

For companies that decide on managing their own Apache Kafka rather than paying a CSP to do it, they often want a commercial product with commercial support and that is what Confluent offers. Confluent also offers a Confluent Cloud service where it sounds like they deploy and manage Kafka in your AWS, Azure, or GCP environment as a cloud agnostic managed service (I am not familiar with that product).

Comment Re:Wrong major (Score 1) 71

That's . . . not entirely true. AI researchers are some of the most highly-sought-after professionals on the market today. Do they have degrees in "AI"? Probably not, since these degrees are fairly novel and it remains to be seen how well universities can train to meet the needs of companies hiring for AI research today. That being said, there's the distinct possibility that "AI degrees" may be mostly fluff.

Slashdot Top Deals

A method of solution is perfect if we can forsee from the start, and even prove, that following that method we shall attain our aim. -- Leibnitz

Working...