article thumbnail

Fallacy #7: Transport cost is zero

Particular Software

In order to connect our data center to the rest of the world, we must exchange currency for the transport of our bits and bytes. Of course, there are upfront and ongoing costs associated with any computer network.

article thumbnail

The end of the legacy Azure Service Bus transport

Particular Software

A while back, we introduced a brand new transport for use with Azure Service Bus. This transport was a necessary step in our Azure offering to allow users to target.NET Standard and.NET Core. Why are we deprecating the legacy transport?

Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

article thumbnail

What's new in SQL Server Transport 6.2

Particular Software

SQL Server Transport is one of our most popular transports. Customers often have deep proficiency with SQL and are able to use SQL Transport to add message queues to new or even legacy systems without needing to adopt (or get approval for) additional technology.

article thumbnail

Engineering On-Demand Transportation for Business with Uber Central

Uber Engineering

When Uber launched in 2009, our mission was simple: make transportation as reliable as running water everywhere, for everyone. While our mission remains the same today, the number of Uber use cases have grown dramatically, motivating our engineers to think … The post Engineering On-Demand Transportation for Business with Uber Central appeared first on Uber Engineering Blog.

article thumbnail

Introducing the new Azure Service Bus transport for.NET Core

Particular Software

Today we’re releasing the new Azure Service Bus transport, which is fully compatible with NServiceBus 7 and.NET Core. With the release of the new NServiceBus Azure Service Bus transport, we are now able to take full advantage of.NET Core and Azure. With this news, we’re rebranding the previous transport as the “legacy” Azure Service Bus transport. The legacy transport will receive only critical bug fixes and security patches from this point on. The wait is over!

article thumbnail

Fix iOS 9 App Transport Security Issues In Apache Cordova

The Polyglot Developer

Here I’m going to discuss App Transport Security (ATS) an issue that is rapidly appearing amongst app developers. The post Fix iOS 9 App Transport Security Issues In Apache Cordova appeared first on The Polyglot Developer

article thumbnail

A new Azure Service Bus transport—but not just yet

Particular Software

Update : The new Azure Service Bus transport for.NET Standard is in preview and will be available soon. This makes it impossible for us to upgrade the NServiceBus Azure Service Bus transport you know and love to support.NET Core as is, and forces us to write a brand-new transport as well. The older WindowsAzure.ServiceBus client only supports the full.NET Framework, so there's no way our Azure Service Bus transport can support.NET Core using that.

article thumbnail

How Park ‘N Fly eliminated silos and improved customer experience with Dynatrace cloud monitoring

Dynatrace

Cloud and microservices Cloud cloud monitoring Perform 2021 Porsche Informatik TransportationDynatrace news. Imagine you’re in a war room. Your ops team is seeing services that aren’t responsive, and customer complaints have started rolling in.

Cloud 156
article thumbnail

How the Swedish Transport Agency learned distributed systems in six months

Particular Software

But the real reason for this post is to tell you about Martin Hägerås and Mattias Olgerfelt from the Swedish Transport Agency. For better or for worse, online education has become the most common (and in many cases, the only) way to learn these days.

article thumbnail

Understanding gRPC Concepts, Use Cases, and Best Practices

DZone

Big data is generated and transported using various mediums in single requests. With the increase in the size of data, we have activities like serializing, deserializing, and transportation costs added to it. We need to cut down on transportation.

article thumbnail

WaI vs. WaP: NYC Subway Edition

J. Paul Reed

human-factors transportationJulian Dunn tweeted out this Vox longread on the New York City subways, and the myriad reasons the MTA can’t seem to make the system run on time. As an infrastructure nerd, I found it fascinating. But as a student of human factors, this bit also stood out to me: Four years later, signal failure caused one train to rear-end another on the Williamsburg Bridge , the fourth such collision in two years. The driver died, and several dozen passengers were injured.

Speed 40
article thumbnail

The Ultimate JSON Library: JSON.simple vs. GSON vs. Jackson vs. JSONP

DZone

JSON is often used to transport and parse big files. JSON is the accepted standard these days for transmitting data between servers and web applications. We often don’t think about the JSON libraries we use, but there are some differences between them.

article thumbnail

Beam-Up Load Balancing: The Portable Next Generation App Experience

DZone

But, ah yes, the matter transporter. We’ve seen many of the technological advances described in the Star Trek milieu become reality over the last 50 years, from personal communication devices and instant translators to GMOs, medical robots, 3D printing and weapons that stun.

article thumbnail

How Uber Achieves Operational Excellence in the Data Quality Experience

Uber Engineering

Uber delivers efficient and reliable transportation across the global marketplace, which is powered by hundreds of services, machine learning models, and tens of thousands of datasets.

article thumbnail

Leveraging ML-Based Anomaly Detection for 4G Networks Optimization

DZone

Artificial intelligence and machine learning already have some impressive use cases for industries like retail, banking, or transportation. While the technology is far from perfect, the advancements in ML allow other industries to benefit as well.

Network 130
article thumbnail

Uber Infrastructure in 2019: Improving Reliability, Driving Customer Satisfaction

Uber Engineering

article thumbnail

Amazon SQS native integration and IAM policy management

Particular Software

The AmazonSQS transport in NServiceBus uses Amazon Simple Queue Service in conjunction with Amazon Simple Notification Service for a powerful queueing and publish/subscribe experience for AWS, whether using traditional hosting or in serverless scenarios with AWS Lambda.

article thumbnail

How to Enhance ETA in Logistics?

DZone

Because in this article, we focus on the estimated time of arrival within transportation services and how to enhance ETA, we will define the significant aspects for you. Customer satisfaction is everything for each business since it directly influences the profit of organizations.

Logistics 147
article thumbnail

Data Mesh?—?A Data Movement and Processing Platform @ Netflix

The Netflix TechBlog

It reads events from the upstream transports and applies some business logic to each of them. An intermediate processor writes data to another transport. Data Mesh?—?A

article thumbnail

Improve Uptime With Error Prevention and Awareness

DZone

We check public transportation apps to see when the next train is arriving at the station. On any given day, we use rideshare apps to get from one place to another. We use streaming services to watch Frasier at the end of lo-ooo-ng work days.

article thumbnail

Ready for changes with Hexagonal Architecture

The Netflix TechBlog

Outside of the business logic are the Data Sources and the Transport Layer: Data Sources are adapters to different storage implementations. Transport Layer can trigger an interactor to perform business logic.

article thumbnail

How Netflix uses eBPF flow logs at scale for network insight

The Netflix TechBlog

The sidecar has been implemented by leveraging the highly performant eBPF along with carefully chosen transport protocols to consume less than 1% of CPU and memory on any instance in our fleet.

Network 285
article thumbnail

Uber’s Big Data Platform: 100+ Petabytes with Minute Latency

Uber Engineering

Uber is committed to delivering safer and more reliable transportation across our global markets. To accomplish this, Uber relies heavily on making data-driven decisions at every level, from forecasting rider demand during high traffic events to identifying and addressing bottlenecks … The post Uber’s Big Data Platform: 100+ Petabytes with Minute Latency appeared first on Uber Engineering Blog.

Big Data 109
article thumbnail

World’s first and only fully automatic observability for Golang services now extended to statically linked Go applications

Dynatrace

package main import ( "net/http" "net/http/httputil" ) func main() { http.HandleFunc("/", proxyHandler) http.ListenAndServe(":8888", nil) } func proxyHandler(w http.ResponseWriter, r *http.Request) { proxy := &httputil.ReverseProxy{ Transport: &http.Transport{}, Director: func(req *http.Request) { req.URL.Host = ":8086" }, } proxy.ServeHTTP(w, r) }. From http.Transport documentation : By default, Transport caches connections for future reuse. Dynatrace news.

article thumbnail

Databook: Turning Big Data into Knowledge with Metadata at Uber

Uber Engineering

From driver and rider locations and destinations, to restaurant orders and payment transactions, every interaction on Uber’s transportation platform is driven by data. Data powers Uber’s global marketplace, enabling more reliable and seamless user experiences across our products for riders, … The post Databook: Turning Big Data into Knowledge with Metadata at Uber appeared first on Uber Engineering Blog.

Big Data 110
article thumbnail

HTTP/3 From A To Z: Core Concepts (Part 1)

Smashing Magazine

Its intended replacement, a new transport protocol named QUIC , differs enough from TCP in a few key ways that running HTTP/2 directly on top of it would be very difficult. Luckily, we can build QUIC on top of the one other broadly supported transport-layer protocol on the Internet: UDP.

article thumbnail

Perform 2021: Recognizing customer innovations and digital transformation.

Dynatrace

Hunt Transport, Inc. Dynatrace news. We work alongside incredible organizations throughout the year, each with a unique approach to digital transformation.

article thumbnail

Remote Debugging Java Applications With JDWP

DZone

The exact way of transporting the packets is not specified and is up to the implementation to define transport mechanisms. Most Java developers have had to debug their applications, usually to find and fix an issue there. In many cases, the application to debug (known as the “debuggee” ) is launched from within the IDE used by the developer, while the debugger is also integrated into the IDE, allowing easy inspection of the program state in a step-by-step manner.

Java 100
article thumbnail

Cherami: Uber Engineering’s Durable and Scalable Task Queue in Go

Uber Engineering

Cherami is a distributed, scalable, durable, and highly available message queue system we developed at Uber Engineering to transport asynchronous tasks. We named our task queue after a heroic carrier pigeon with the hope that this system would be just … The post Cherami: Uber Engineering’s Durable and Scalable Task Queue in Go appeared first on Uber Engineering Blog. Architecture Open Source API Cassandra Cherami Distributed Systems Go Ringpop RocksDB TChannel Zookeeper

article thumbnail

Expanding the Cloud: Moving large data sets into Amazon S3 with AWS Import/Export.

All Things Distributed

Before networks were everywhere, the easiest way to transport information from one computer in your machine room was to write the data to a floppy disk, run to the computer and load the data there from that floppy. This form of data transport was jokingly called "sneaker net".

article thumbnail

Azure Storage Queues learns some new tricks

Particular Software

Native publish/subscribe We have added native publish/subscribe support directly into the Azure Storage Queues transport. Check out the new Native Integration with Azure Storage Queues Transport sample for more details.

Storage 52
article thumbnail

Exploring MySQL Binlog Server – Ripple

Scalegrid

164] Failed to connected to host: <Hosname>, port: 3306, err: Failed to connect: Connections using insecure transport are prohibited while --require_secure_transport=ON.

Servers 186
article thumbnail

MSMQ is dead

Particular Software

The NServiceBus API gives you an abstraction away from the raw MSMQ API, making it quite a bit easier to transition to some other message transport than if you'd written directly against MSMQ to start with. The first thing you'll need to do is select an alternate message transport.

article thumbnail

Kubernetes in the wild report 2023

Dynatrace

These customers are among the world’s largest 15,000 organizations from all major industries, including financial services, retail and e-commerce, technology, transportation, manufacturing, healthcare, and public-sector organizations. Kubernetes adoption survey executive summary.

article thumbnail

NTS: Reliable Device Testing at Scale

The Netflix TechBlog

MQTT is an OASIS standard messaging protocol for the Internet of Things (IoT) and was designed as a highly lightweight yet reliable publish/subscribe messaging transport that is ideal for connecting remote devices with a small code footprint and minimal network bandwidth.

Testing 293
article thumbnail

How Netflix brings safer and faster streaming experience to the living room on crowded networks…

The Netflix TechBlog

To achieve that, we are efficiently using ABR (adaptive bitrate streaming) for a better playback experience, DRM (Digital Right Management) to protect our service and TLS (Transport Layer Security) to protect customer privacy and to create a safer streaming experience.

Network 232
article thumbnail

The Best Photo Carry-On: Pelican Air 1525 Hard Case

Website Optimization

Airplanes, especially smaller ones, are the most challenging for transporting photo equipment. As photographers, we're always looking for the best way to carry our gear when traveling. Checking your cameras and lenses, even in a hard case, increases the risk of damage or theft. Most photographers prefer packing their delicate optics into carry-on bags, and leaving tripods, lighting equipment, and other more robust equipment in checked baggage.

Website 40
article thumbnail

Checksums in Storage Systems and Why the Enterprise Should Care

DZone

That data must then be safely transported over a network to the storage system where it is written to disk. Random bit flips are far more common than most people, even IT professionals, think. Surprisingly, the problem isn’t widely discussed, even though it is silently causing data corruption that can directly impact our jobs, our businesses, and our security.

Storage 145
article thumbnail

Let's talk about Kafka

Particular Software

Since NServiceBus is a communication framework over message queues, we don’t currently have any plans for a Kafka-based message transport that would be similar to our message transports for RabbitMQ, Azure Service Bus, and Amazon SQS. We get a lot of questions about Kafka. Is it good?

article thumbnail

What is container as a service? How CaaS compares to PaaS, IaaS, and FaaS

Dynatrace

The emergence of Docker and other container services enabled companies to transport code quickly and easily. The containerization craze has continued for enterprises, with benefits such as portability, efficiency, and scalability.

article thumbnail

Building Netflix’s Distributed Tracing Infrastructure

The Netflix TechBlog

This was the most important question we considered when building our infrastructure because data sampling policy dictates the amount of traces that are recorded, transported, and stored. Our trace data collection agent transports traces to Mantis job cluster via the Mantis Publish library.

article thumbnail

From observability to sustainability: Reduce your IT carbon footprint with Dynatrace Carbon Impact

Dynatrace

Your IT carbon footprint Corporate carbon footprint calculations consist of multiple facets, including transportation, waste management, fuel, and electricity consumption.

Energy 180
article thumbnail

Dynatrace adds support for AWS Transit Gateway with VPC Flow Logs

Dynatrace

These include Source IP, destination IP, transport protocol, source port, and destination port. Dynatrace news. Dynatrace has added support for the newly introduced Amazon Virtual Private Cloud (VPC) Flow Logs for AWS Transit Gateway.

AWS 212