Delta bolsters Austin focus city with new Bay Area route


Texas Hill Country isn’t technically Delta Air Lines country. But the state’s capital city sure is starting to look more like it.

Delta on Friday announced it’s adding another route from Austin Bergstrom International Airport (AUS).

Starting this fall, the Atlanta-based carrier will launch nonstop service to San Jose, California.

It’ll be Delta’s second Bay Area nonstop from Austin when the year-round service kicks off in October.

Delta’s Austin growth continues

The route will also be just the latest addition in what’s been a fast run of expansion for Delta at the airport.

I ran the numbers to get a little perspective: Just two years ago, Delta operated just over 14,000 departures from Austin, according to data from aviation analytics firm Cirium. This year, it’s on track to have more than 21,000 flights take off. That’s an increase of around 47%.

Read more: Why does Delta Air Lines have ‘focus cities’? Loyalty

Austin Bergstrom International Airport (AUS). BRANDON BELL/GETTY IMAGES

Now, the reality check: That’s still far less than what it flies from its true hub cities like Detroit, Minneapolis or Salt Lake City (to say nothing of its Atlanta mega-hub).

And we have to point out, Delta is solidly the No. 2 airline, still in Austin. Southwest Airlines is the clear market leader.

Reward your inbox with the TPG Daily newsletter

Join over 700,000 readers for breaking news, in-depth guides and exclusive deals from TPG’s experts

But Delta’s offerings at AUS have certainly ballooned over the past couple of years, to include service to major metropolitan areas and smaller destinations alike — such as McAllen, Texas and Fargo, N.D.

Book immediately: Delta One award space to Europe

Delta’s new AUS-SJC route

Up next, though?

San Jose’s Mineta International Airport (SJC), which Delta will fly with one of its 132-seat Airbus A319 aircraft.

Service will begin on Oct. 6.

The AUS-SJC route will connect two major tech hubs, and give Delta a second Bay Area nonstop from Austin; it already operates service to the region’s larger San Francisco International Airport (SFO).

Plane Spotting Assorted
Delta Air Lines logo on a Delta Connection regional jet. SEAN CUDAHY/THE POINTS GUY

Delta will also have competition on the route from — you guessed it — Southwest, which already operates Austin-San Jose flights.

Bolstering Orlando route

Along with the new Austin-San Jose route announced Friday, Delta also revealed it would tack on a third daily roundtrip between the Texas capital and Orlando International Airport (MCO).

“Together, the changes strengthen Delta’s presence in Austin while adding more flexibility for customers traveling across the South, West Coast and key leisure destinations,” the carrier said in a statement.

Where does your loyalty stand?

If you’re an Austin frequent flyer trying to decide which airline to fly, you’re in luck: the top two airlines at the airport occupied two of the top three spots in our recently-published 2026 Best Airlines Report.

Related reading:



Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


Install ElasticSearch – Table of Content

In this tutorial, you will learn the general features of Elasticsearch and how to install the elasticsearch step by step.

                       Become a Elasticsearch Certified professional  by learning Elasticsearch online course from hkrtrainings! 

Elasticsearch key features:

The following are the curated features of elasticsearch. They are:

  • Elasticsearch can handle unstructured data up to petabytes in size.
  • Elasticsearch can be used to replace document stores such as MongoDB and RavenDB.
  • Denormalization is used by Elasticsearch to improve search performance.
  • Elasticsearch is a popular enterprise search engine that is currently used by many large organizations such as Wikipedia, The Guardian, StackOverflow, GitHub, and others.
  • Elasticsearch is open source and distributed under the Apache License 2.0. 

Now we will learn about the installation of elasticsearch step by step.

Installation of Elasticsearch:

Step1: Explore the version of Java that is installed on your computer. Java 7 or higher is required. You can double-check by doing the following:

In the Windows Operating System (OS) (via the command prompt)

>java-version

In UNIX OS (Using Terminal) −

$ echo $JAVA_HOME

Step2: Download Elasticsearch from www.elastic.co, as indicated below, depending on your operating system.

  • Download the ZIP file for Windows.
  • Download the TAR file for UNIX OS.
  • Download the DEB file for Debian OS.
  • Download the RPN file for Red Hat and other Linux distributions.
  • In many Linux distributions, the APT and Yum utilities can also be used to install Elasticsearch.

Step3:

Elasticsearch installation is straightforward, as described below for various operating systems.Windows Operating System Elasticsearch is installed after unzipping the zip package.UNIX Operating System Elasticsearch is installed after extracting the tar file to any location.

$wget

https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch7.0.0-linux-x86_64.tar.gz

$tar -xzf elasticsearch-7.0.0-linux-x86_64.tar.gz

  • Use the APT utility for Linux OS− Download and install the Public Signing Key

$ wget -qo – https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo

apt-key add –

Save the repository definition as shown below −

$ echo “deb https://artifacts.elastic.co/packages/7.x/apt stable main” |

sudo tee -a /etc/apt/sources.list.d/elastic-7.x.list

  • Perform run update function using the below command.

$ sudo apt-get update

ElasticSearch Training

  • Master Your Craft
  • Lifetime LMS & Faculty Access
  • 24/7 online expert support
  • Real-world & Project Based Learning

Now you need to install by using the following command −

$ sudo apt-get install elasticsearch

  • Now download and install the Debian package manually using the command given here −

$wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch7.0.0-amd64.deb

$sudo dpkg -i elasticsearch-7.0.0-amd64.deb0

  • Using YUM utility for Debian Linux OS

Download and install the Public Signing Key −

$ rpm –import https://artifacts.elastic.co/GPG-KEY-elasticsearch

  • ADD the following text in the file with the .repo suffix in your “/etc/yum.repos.d/” directory. For example, elasticsearch.repo

elasticsearch-7.x]

name=Elasticsearch repository for 7.x packages

baseurl=https://artifacts.elastic.co/packages/7.x/yum

gpgcheck=1

gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch

enabled=1

autorefresh=1

type=rpm-md

  • Now you can now install Elasticsearch by using the following command

sudo yum install elasticsearch

Step4: Navigate to the bin folder in the Elasticsearch home directory. In the case of Windows, run the elasticsearch.bat file, or in the case of UNIX, use command prompt and terminal to run the Elasticsearch file.

In Windows

> cd elasticsearch-2.1.0/bin

> elasticsearch

Big Data Analytics, install-elasticsearch-description-0, Big Data Analytics, install-elasticsearch-description-1

Subscribe to our YouTube channel to get new updates..!

In Linux

$ cd elasticsearch-2.1.0/bin

$ ./elasticsearch

Step5: The default port for the Elasticsearch web interface is 9200, but this can be changed by changing http.port in the elasticsearch.yml file located in the bin directory. To see if the server is up and running, go to http://localhost:9200. It will return a JSON object containing information about the installed Elasticsearch in the format shown below.

{

   "name" : "Brain-Child",

   "cluster_name" : "elasticsearch", "version" : {

      "number" : "2.1.0",

      "build_hash" : "72cd1f1a3eee09505e036106146dc1949dc5dc87",

      "build_timestamp" : "2015-11-18T22:40:03Z",

      "build_snapshot" : false,

      "lucene_version" : "5.3.1"

   },

   "tagline" : "You Know, for Search"

}

Step6: Now we should install Kibana. Follow the respective code given below for installing on Linux and Windows −

For Installation on Linux −

wget https://artifacts.elastic.co/downloads/kibana/kibana-7.0.0-linuxx86_64.tar.gz

tar -xzf kibana-7.0.0-linux-x86_64.tar.gz

cd kibana-7.0.0-linux-x86_64/

./bin/kibana

For Windows Installation

Kibana for Windows can be downloaded from https://www.elastic.co/products/kibana. When you click the link, you will be taken to the home page, as shown below.

installation_on_windows

Unzip and go to the Kibana home directory in order to run it. 

CD c:\kibana-7.0.0-windows-x86_64

.\bin\kibana.bat

ElasticSearch Training

Weekday / Weekend Batches

Conclusion:

In the above blog post we had explained about the installation steps of elasticsearch both for linux and windows operating system. Had any queries drop them in the comments section to get them resolved.

Related Articles:



Source link